home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMP Graphics Collection
/
AMP Graphics Collection.iso
/
programs
/
author
/
versions
/
testd4.dir
/
00009_Script_9
< prev
next >
Wrap
Text File
|
1996-08-09
|
2KB
|
61 lines
on startMovie
openVersions()
global gNeverCleared
if voidP(gNeverCleared)then
clearAllFields()
set gNeverCleared to FALSE
end if
end
on stopMovie
closeVersions()
end
on clearAllFields
cursor 0
updateStage
cursor 4
updateStage
initField("mQuickTimeVersion")
initField("mWin32QuickTimeVersion")
initField("mFileVersion")
initField("mWindowsDirectory")
initField("mWin32WindowsDirectory")
initField("mSystemDirectory")
initField("mWin32SystemDirectory")
initField("mDOSVersion")
initField("mWindowsVersion")
initField("mWin32Version")
initField("mWin32Platform")
initField("mWin32Build")
initField("mWinNTVersion")
initField("mDescribe")
initField("target file")
cursor 0
updateStage
cursor -1
updateStage
end
on initField theField
set theNum = the number of cast theField
if theNum = -1 then
alert "initField(): theField ''" & theField & "'' missing"
return
end if
put " " into field theNum
set the textStyle of field theNum to "Plain"
if the machineType < 256 then
set the textFont of field theNum to "Monaco"
set the textSize of field theNum to 9
else
set the textFont of field theNum to "Courier New"
set the textSize of field theNum to 10
end if
--Note: the FONTMAP.TXT in this movie does the same
--translations, but you must set the textFont to
--a font that actually exists on the current platform.
set the foreColor of cast theNum to 255
set the backColor of cast theNum to 0
end